projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9fe0d19
)
Use local var `b' instead of XBUFFER (w->buffer) also when
author
Kim F. Storm
<storm@cua.dk>
Mon, 7 Nov 2005 11:55:20 +0000
(11:55 +0000)
committer
Kim F. Storm
<storm@cua.dk>
Mon, 7 Nov 2005 11:55:20 +0000
(11:55 +0000)
accessing member cursor_in_non_selected_windows.
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/xdisp.c
b/src/xdisp.c
index b8f375968afd4a2656bf412fd86aa55e0c225f8d..9f8ac387927cfa0fa449eaee57e8a539ba787140 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-20797,7
+20797,7
@@
get_window_cursor_type (w, glyph, width, active_cursor)
/* Use cursor-in-non-selected-windows for non-selected window or frame. */
if (non_selected)
{
- alt_cursor =
XBUFFER (w->buffer)
->cursor_in_non_selected_windows;
+ alt_cursor =
b
->cursor_in_non_selected_windows;
return get_specified_cursor_type (alt_cursor, width);
}